home *** CD-ROM | disk | FTP | other *** search
- @echo off
-
- set destination=%windir%
- if exist %windir%\win.com goto copy_files
-
- :prompt_for_path
- what s "Enter the path to your windows directory (e.g. c:\windows) "
- set destination=%what%
- if exist %what%\win.com goto copy_files
-
- goto prompt_for_path
-
- :copy_files
- copy *.rdr %destination%\render
- echo .
- echo Screen rendering installed!
- pause
-
-